Skip to main content

TsgArc

Unit: DXFConv

Description

TsgArc specifies the arc.

ValueDescription
RectBounding rectangle.
CenterCenter point.
Point1Start point.
Point2End point.
Ang1End angle.
Ang2Start angle.
RxX axis radius.
RyY axis radius.
ValidDefines whether or not rectangle is valid. True – rectangle is valid. False – rectangle is invalid.

Syntax

type
PsgArc = ^TsgArc;
TsgArc = record
Rect: TFRect;
Center, Point1, Point2: TFPoint;
Ang1, Ang2, Rx, Ry: Double;
Valid: Boolean;
end;